{"version":3,"file":"static/chunks/pages/blog/[...slug]-f61220fd30ff16c1.js","mappings":"oFACKA,OAAOC,SAAWD,OAAOC,UAAY,IAAIC,KAAK,CAC7C,kBACA,WACE,OAAO,EAAQ,U,mJCqCR,SAASC,EAAK,G,IAC3BC,EAD2B,EAC3BA,KACAC,EAF2B,EAE3BA,cACAC,EAH2B,EAG3BA,KACAC,EAJ2B,EAI3BA,KAEA,OACE,c,SACG,UAAWH,IAAuB,IAAfA,EAAKI,OACvB,QAACC,EAAAA,EAAiB,CAChBC,OAAQN,EAAKM,QA7CA,aA8CbC,IAAKP,EAAKO,IACVC,QAASR,EACTC,cAAeA,EACfC,KAAMA,EACNC,KAAMA,KAGR,QAACM,MAAG,CAACC,UAAU,oB,UACb,QAACC,EAAAA,EAAS,C,UAAC,qBACU,KACnB,QAACC,OAAI,CAACC,KAAK,MAAMC,aAAW,gB,SAAgB,2B","sources":["webpack://_N_E/?3115","webpack://_N_E/./pages/blog/[...slug].tsx"],"sourcesContent":["\n (window.__NEXT_P = window.__NEXT_P || []).push([\n \"/blog/[...slug]\",\n function () {\n return require(\"private-next-pages/blog/[...slug].tsx\");\n }\n ]);\n if(module.hot) {\n module.hot.dispose(function () {\n window.__NEXT_P.push([\"/blog/[...slug]\"])\n });\n }\n ","import PageTitle from '@/components/PageTitle'\nimport { MDXLayoutRenderer } from '@/components/MDXComponents'\nimport { sortedBlogPost, coreContent } from '@/lib/utils/contentlayer'\nimport { InferGetStaticPropsType } from 'next'\nimport { allBlogs, allAuthors } from 'contentlayer/generated'\n\nconst DEFAULT_LAYOUT = 'PostLayout'\n\nexport async function getStaticPaths() {\n return {\n paths: allBlogs.map((p) => ({ params: { slug: p.slug.split('/') } })),\n fallback: false,\n }\n}\n\nexport const getStaticProps = async ({ params }) => {\n const slug = (params.slug as string[]).join('/')\n const sortedPosts = sortedBlogPost(allBlogs)\n const postIndex = sortedPosts.findIndex((p) => p.slug === slug)\n // TODO: Refactor this extraction of coreContent\n const prevContent = sortedPosts[postIndex + 1] || null\n const prev = prevContent ? coreContent(prevContent) : null\n const nextContent = sortedPosts[postIndex - 1] || null\n const next = nextContent ? coreContent(nextContent) : null\n const post = sortedPosts.find((p) => p.slug === slug)\n const authorList = post.authors || ['default']\n const authorDetails = authorList.map((author) => {\n const authorResults = allAuthors.find((p) => p.slug === author)\n return coreContent(authorResults)\n })\n\n return {\n props: {\n post,\n authorDetails,\n prev,\n next,\n },\n }\n}\n\nexport default function Blog({\n post,\n authorDetails,\n prev,\n next,\n}: InferGetStaticPropsType) {\n return (\n <>\n {'draft' in post && post.draft !== true ? (\n \n ) : (\n
\n \n Under Construction{' '}\n \n 🚧\n \n \n
\n )}\n \n )\n}\n"],"names":["window","__NEXT_P","push","Blog","post","authorDetails","prev","next","draft","MDXLayoutRenderer","layout","toc","content","div","className","PageTitle","span","role","aria-label"],"sourceRoot":""}